type net/http.wantConnQueue
13 uses
net/http (current package)
transport.go#L100: idleConnWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L111: connsPerHostWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L112: dialsInProgress wantConnQueue
transport.go#L1173: t.idleConnWait = make(map[connectMethodKey]wantConnQueue)
transport.go#L1329: type wantConnQueue struct {
transport.go#L1346: func (q *wantConnQueue) len() int {
transport.go#L1351: func (q *wantConnQueue) pushBack(w *wantConn) {
transport.go#L1356: func (q *wantConnQueue) popFront() *wantConn {
transport.go#L1371: func (q *wantConnQueue) peekFront() *wantConn {
transport.go#L1383: func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
transport.go#L1395: func (q *wantConnQueue) cleanFrontCanceled() {
transport.go#L1407: func (q *wantConnQueue) all(f func(*wantConn)) {
transport.go#L1531: t.connsPerHostWait = make(map[connectMethodKey]wantConnQueue)
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |